Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Dec 1, 2021. It is now read-only.

Commit 2b45ea9

Browse files
Merge pull request #93 from rowmatrix/master
Added challenge_text for [Easy] #22 and #31
2 parents d81d81a + 4b4564d commit 2b45ea9

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Write a program that will compare two lists, and append any elements in the second list that doesn't exist in the first.
2+
input: ["a","b","c",1,4,], ["a", "x", 34, "4"]
3+
output: ["a", "b", "c",1,4,"x",34, "4"]
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Write a function that takes two base-26 numbers in which digits are represented by letters with A=0, B=1, ... Z=25 and returns their product using the same notation. As an example, CSGHJ ×ばつ CBA = FNEUZJA.
2+
Your task is to write the base-26 multiplication function.
3+
Try to be very efficient in your code!

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /