about | help | code help+videos | done | prefs |
combineLists
Given lists of keys and values, combine them into a dictionary. The index determines which key matches which value, and both lists are always the same size, but could be empty. Keys are always unique.
combineLists([], []) → [{}] combineLists([10], [40]) → [{10: 40}] combineLists([64, 50], [9, 61]) → [{64: 9, 50: 61}] ...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