GithubHelp home page GithubHelp logo

find-first-duplicate's Introduction

Day 2: Find First Duplicate

Learning Goals

  • Practice algorithmic problem solving

Instructions

Given an Array, find the first duplicate value that occurs. If there are no duplicates, return -1.

Input: [2, 1, 3, 3, 2]
Output: 3

Input: [1, 2, 3, 4]
Output: -1

Use the language of your choosing. We've included starter files for some languages where you can pseudocode, explain your solution and code.

Before you start coding

  1. Rewrite the problem in your own words
  2. Validate that you understand the problem
  3. Write your own test cases
  4. Pseudocode
  5. Code!

And remember, don't run our tests until you've passed your own!

How to run your own tests

Ruby

  1. cd into the ruby folder
  2. ruby <filename>.rb

JavaScript

  1. cd into the javascript folder
  2. node <filename>.js

How to run our tests

Ruby

  1. cd into the ruby folder
  2. bundle install
  3. rspec

JavaScript

  1. cd into the javascript folder
  2. npm i
  3. npm test

find-first-duplicate's People

Contributors

a-java-chip-frappuccino avatar graciemcguire avatar hellorupa avatar ihollander avatar jlboba avatar lizbur10 avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

find-first-duplicate's Issues

Add extra test case?

Canvas Link

https://learning.flatironschool.com/courses/4997/assignments/165451?module_item_id=357010

Concern

Could we clarify, in both the README and the test cases, that the duplicates don't have to be next to each other?

For example, I was thinking, After this test,

expect(findFirstDuplicate([1, 2, 3, 3, 2, 1])).toBe(3);

We could add another

expect(findFirstDuplicate([1, 2, 3, 4, 2, 3, 1])).toBe(2);

This test case communicates that 1) duplicates don't have to be next to each other, and 2) when there are multiple duplicates, such as 2s and 3s, the first one is the desired result (2, in this case).

This is all, of course, assuming that I have read and interpreted this assignment correctly, of course.

Additional Context

No response

Suggested Changes

No response

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.