This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require('express') | |
const AWS = require("aws-sdk") | |
var bodyParser = require('body-parser') | |
const MessageValidator = require('sns-validator') | |
const config = { | |
"SNS_TOPIC_ARN": "", | |
"USER_ARN": "", | |
"USER_ACCESS_KEY_ID": "", | |
"USER_SECRET_ACCESS_KEY": "", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require('express') | |
const AWS = require("aws-sdk") | |
var bodyParser = require('body-parser') | |
const MessageValidator = require('sns-validator') | |
var jsonParser = bodyParser.json() | |
const config = { | |
"SNS_TOPIC_ARN": "", | |
"USER_ARN": "", | |
"USER_ACCESS_KEY_ID": "", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function findNonRepeatingChars(string) { | |
const stringArray = string.split('') | |
const nonrecurring = [] | |
const resultObj = {} | |
for(let char of stringArray) { | |
if(!resultObj[char]) { | |
resultObj[char] = 1; | |
} else { | |
resultObj[char] += 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Python3 solution to https://www.hackerrank.com/challenges/diagonal-difference/problem | |
# test data | |
first_array = [11, 2, 4] | |
second_array = [4, 5, 6] | |
third_array = [10, 8, -12] | |
sumArray = [] | |
sumArray.append(first_array) | |
sumArray.append(second_array) | |
sumArray.append(third_array) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Python2 solution for codility frog jump question | |
# https://codility.com/programmers/lessons/3-time_complexity/frog_jmp/ | |
import math | |
def solution(X, Y, D): | |
# write your code in Python 2.7 | |
source_and_destination_difference = Y - X | |
fixed_distance_jump = D | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# A left rotation operation on an array of size shifts each of the array's elements 1 unit to the left. | |
# For example, if 2 left rotations are performed on array [1,2,3,4,5], then the array would become [3,4,5,1,2] | |
#Given an array of n integers and a number,d , perform d left rotations on the array. | |
#Then print the updated array as a single line of space-separated integers. | |
def rotate(array, position): | |
print (array[position:] + array[:position]) | |
#or return |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Codility Bbinary Gap Test | |
function solution($N) { | |
// write your code in PHP5.5 | |
$binaryNumber = decbin($N); // binary conversion of number | |
$trimmed = trim($binaryNumber, 0); // trim to remove trailing zeros | |
$binaryGap = explode("1",$trimmed); // explode | |
$binaryCount = array_map('strlen', $binaryGap); | |
return max($binaryCount); // returns the longest binary gap |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function end(str, target) { | |
// "Never give up and good luck will find you." | |
// -- Falcor | |
var tagLen = target.length; | |
var str_len = ((-str.length) + tagLen ); | |
var sub_str = str.substr(-tagLen, tagLen); | |
if(target == sub_str){ | |
return true; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function largestOfFour(arr) { | |
var results = []; | |
for (var n in arr) { | |
var largestNumber = 0; | |
for (var sb in arr[n]) { | |
if (arr[n][sb] > largestNumber) { | |
largestNumber = arr[n][sb]; | |
} | |
} | |
results[n] = largestNumber; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function titleCase(str) { | |
var strArray = str.toLowerCase().split(' '); | |
for (var i = 0; i < strArray.length; i++) { | |
strArray[i] = strArray[i][0].toUpperCase() + strArray[i].slice(1); | |
} | |
return strArray.join(' '); | |
} | |
titleCase("I'm a little tea pot"); |
NewerOlder