String Similarity

For two strings A and B, we define the similarity of the strings to be the length of the longest prefix common to both strings. For example, the similarity of strings “abc” and “abd” is 2, while the similarity of strings “aaa” and “aaab” is 3. Calculate the sum of similarities of a string S […]

Continue Reading

Fibonacci

Complete the function fibonacci to return an array containing the first N Fibonacci numbers. fib(n) = n                                , n <= 1 fib(n) = fib(n-2) + fib(n-1), otherwise Constraints: 1 ≤ N ≤ 10   Sample Input 4 Sample Output 0 […]

Continue Reading

Calculate Factorial

Write a program that will read an integer N from STDIN and compute the factorial of N. The input to your program will contain many lines. On each line there will be exactly one integer. Your program should print the factorial of each integer in a separate line. Your program should terminate when it reads a number […]

Continue Reading

Maximum Difference in an Array

Return the maximum difference between any a[i] and a[j] where a[i] < a[j] and i < j The maximum difference for a pair of elements in some array a is defined as the largest difference between any a[i] and a[j] where i < j and a[i] < a[j]. The declaration for a function named maxDifference […]

Continue Reading

Sửa lỗi cài win “Setup was unable to create a new system partition or locate an existing system partition”

Setup was unable to create a new system partition or locate an existing system partition

Hiện nay do công nghệ thay đổi, nên trong khi cài Windows từ thiết bị ngoài USB, các bạn hay gặp phải lỗi sau: “Setup was unable to create a new system partition or locate an existing system partition” Về lý do vì sao bị lỗi tôi sẽ cập nhật tại bài viết này sau hoặc […]

Continue Reading

Luyện Đọc Nhanh

Luyện đọc nhanh

Bạn biết gì về đọc nhanh? liệu bạn đã đọc nhanh hay chưa? Hay xem qua bài Luyện Đọc Nhanh để xem bạn đã đọc đúng cách chưa nhé! Bạn biết gì về đọc nhanh? Và Luyện Đọc Nhanh? Hiểu đúng về đọc nhanh Đọc nhanh là nhìn: Bạn đọc được vài từ một lần […]

Continue Reading

Types of software Testing

Software Testing Types: Black box testing – Internal system design is not considered in this type of testing. Tests are based on requirements and functionality. White box testing – This testing is based on knowledge of the internal logic of an application’s code. Also known as Glass box Testing. Internal software and code working should […]

Continue Reading