git-osp-for-beginners icon indicating copy to clipboard operation
git-osp-for-beginners copied to clipboard

A GitHub Repository to encourage and involve beginners in Open Source Contributions

Results 29 git-osp-for-beginners issues
Sort by recently updated
recently updated
newest added

Given a string containing digits from `2-9` inclusive, return all possible letter combinations that the number could represent. Return the answer in **any order**. A mapping of digit to letters...

good first issue
Hacktoberfest
C/C++

closes issue #549 Signed-off-by: nitishanand99

Signed-off-by: Amit Gaikwad

Hacktoberfest
changes-requested

works for all data types.

Hacktoberfest
changes-requested

Given a **1-indexed** array of integers `numbers` that is already ***sorted in non-decreasing order\***, find two numbers such that they add up to a specific `target` number. Let these two...

good first issue
Hacktoberfest
Java

Given n non-negative integers a1, a2, ..., an , where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of the...

good first issue
Hacktoberfest
C/C++

You are given an n x n 2D matrix representing an image, rotate the image by 90 degrees Example 1: Input: matrix = [[1,2,3],[4,5,6],[7,8,9]] Output: [[7,4,1],[8,5,2],[9,6,3]] Example 2: Input: matrix...

good first issue
Hacktoberfest
Java

Given a **1-indexed** array of integers `numbers` that is already ***sorted in non-decreasing order\***, find two numbers such that they add up to a specific `target` number. Let these two...

good first issue
Hacktoberfest
C#

Question : Design a hit counter which counts the number of hits received in the past ```5``` minutes (i.e., the past ```300``` seconds). Your system should accept a ```timestamp``` parameter...

good first issue
Hacktoberfest
Kotlin