Narr's Blog
Home Archives
Home Archives

Jason Seonhong Kim

Front End Developer

https://twitter.com/nardgu About Me
24 posts
5 tags

#algorithm

Time planner

2016-08-16
algorithm

Matrix piral print

2016-08-16
algorithm

Array of array products

2016-08-15
algorithm

Word count engine

2016-08-12
algorithm

Rotated sorted array

2016-08-10
algorithm

String compression

2016-08-09
algorithm

The smallest palindrome

2016-08-08
algorithm

Quad combination

2016-08-07
algorithm

Smallest substring of all characters

2016-08-04
algorithm

Flatten nested arrays of integers

2016-08-03
algorithm
123Next »

recent

  • Time planner

    2016-08-16

  • Matrix piral print

    2016-08-16

  • Array of array products

    2016-08-15

  • Word count engine

    2016-08-12

  • Rotated sorted array

    2016-08-10

archives

  • August 201612
  • July 201611
  • May 20161

tags

  • URI1
  • URL1
  • algorithm22
  • first1
  • task1
© 2016 Jason Seonhong Kim
Powered by Hexo. Theme by PPOffice
Posts
Time planner

Implement a meeting planner that can schedule meetings between two persons at a time.Planner input:dur - Meeting duration in seconds (a positive integ

Matrix piral print

Given a 2D array (matrix) named M, print all items of M in a spiral order, clockwise.For example: [[1, 2, 3, 4, 5],[6, 7, 8, 9, 10],[11, 12, 13, 14, 1

Array of array products

Given an array of integers ‘arr’, write a function that returns another array at the same length where the value at each index i is the product of all

Word count engine

Implement a document scanning engine that receives a text document doc and returns a list of all unique words in it and their number of occurrences, s

Rotated sorted array

searching an element in a rotated sorted array(ascending order) and return the index of it or -1example:rotatedSortedArr([3, 0, 1, 2], 1);// 2

Tags
algorithmalgorithm
tasktask
URIURI
URLURL
firstfirst