Skip to content

Latest commit

 

History

History
75 lines (51 loc) · 1.05 KB

ARTICLE-TEMPLATE.mdx

File metadata and controls

75 lines (51 loc) · 1.05 KB

// Guideline : Copy the raw version of this file before making any changes


title: Title slug: /Folder name/file name

Introduction

//write here in single line

Explanation

// write here in single line

Let's have one example:

Give example here

Algorithm

//write here in bullet point format or pseudo code

Code

import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';

<Tabs defaultValue="cpp/java" values={[ { label: 'C++/Java', value: 'cpp/java', }, { label: 'Python', value: 'py', }, ] }>

//start writing here
//start writing here

Sample Input and Output

Input:

//write here

Output:

//write here

Complexity Analysis

  • Time complexity -
  • Space complexity -

Credits

  • [name](github profile-link) contributed the [C++/Java implementation](Code link from NeoAlgo)
  • [name](github profile-link) contributed the [Python implementation](Code link from NeoAlgo)