about | help | code help+videos | done | prefs |
Given two Sets of Integers, return a HashSet only containing the elements they DO NOT have in common. Your first two lines of code must be the following:
welcomeback_set_notInCommon([1, 2], [2, 3]) → [1, 3] welcomeback_set_notInCommon([1, 2, 3, 4, 5], [1, 3, 5]) → [2, 4] welcomeback_set_notInCommon([1, 2, 3], [2, 3, 4]) → [1, 4] ...Save, Compile, Run (ctrl-enter) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Copyright Nick Parlante 2017 - privacy