馃殌 CYBER WEEK SALE: 50% OFF on JavaScript Fundamentals 馃挭

Task #3801, Stage #5 - Vocabulary Builder app

Let鈥檚 add the component src/components/Buttons/RadialButton. This component must return a TouchableOpacity element that wraps the Icon component. The onPress property must be forwarded to TouchableOpacity. Pass the following properties to the Icon component: size - 35, color - colors....

August 15, 2020 路 1 min 路 Coderslang Master

Task #3801, Stage #6 - Vocabulary Builder app

Let鈥檚 add the src/components/NavigationHeader component. This component should return the StatusBar element. NavigationHeader should have default properties: barStyle: dark, backgroundColor: transparent. The StatusBar must have animated and translucent properties equal to true....

August 15, 2020 路 1 min 路 Coderslang Master

Task #3801, Stage #7 - Vocabulary Builder app

Let鈥檚 work on the Lists screen. It should return a snippet with two SafeAreaView elements. The first one should have styles: flex: 1, backgroundColor - colors.blue. Second: flex: 0, backgroundColor: colors....

August 15, 2020 路 2 min 路 Coderslang Master

Task #3801, Stage #8 - Vocabulary Builder app

Let鈥檚 connect redux and navigation to our application To do this, import the src/components/Navigator component and the Provider component from react-redux. Now, after the fonts are loaded in the <App /> component, the navigator wrapped by the provider should be returned....

August 15, 2020 路 1 min 路 Coderslang Master

Task #3801, Stage #9 - Vocabulary Builder app

Let鈥檚 add the remaining screens to the navigator. There should be 4 of them in total. Let鈥檚 add a screen with the Words component and the name WORDS_SCREEN. And add two more screens with the AddingListOrWord component....

August 15, 2020 路 1 min 路 Coderslang Master

Task #4011 - Binary search

Implement the binarySearch function. It should accept a sorted array and a number. It should return the position of the number in the array or -1 if it鈥檚 not found....

August 15, 2020 路 1 min 路 Coderslang Master

Task #4021 - Get bit

Implement the function getBit(n, pos). It should return the value of the bit found on position pos of the number n. The position of the rightmost bit is 0. This task is part of the Full-Stack JavaScript Course...

August 15, 2020 路 1 min 路 Coderslang Master

Task #4031 - Sort

Implement the sort function which should sort the array. Sort order should be ascending. You can鈥檛 use any third party modules or built in Array functions. This task is part of the Full-Stack JavaScript Course...

August 15, 2020 路 1 min 路 Coderslang Master

Task #4032 - Are arrays identical?

Implement the function isArrayIdentical in helper.js It should return true if two arrays have the same elements. The order of the elements doesn鈥檛 matter. Arrays will only have plain fields (strings, numbers or booleans)...

August 15, 2020 路 1 min 路 Coderslang Master

Task #4041 - Fast Sort

Implement the fastSort function which should sort the array. Sort order should be ascending. The time complexity should be better than O(n^2), preferably O(n*log(n)). You can鈥檛 use any third party modules or built in Array functions....

August 15, 2020 路 1 min 路 Coderslang Master