Git Product home page Git Product logo

jv-work-with-file's Introduction

jv-work-with-file

Implement method getStatistic(String fromFileName, String toFileName) which will return some data from market after working day.

This method has two parameters:

  • String fromFileName - you should read data from this file
  • String toFileName - you should write result to this file

Input file has .csv format. CSV is a simple file format used to store tabular data. This type of files is very popular to storing information. So we will start working with it. CSV stands for "comma-separated values". Its data fields are most often separated, or delimited by a comma.

For example, let's say you had a spreadsheet containing the following data:

operation type ammount
supply 30
buy 10
buy 13
supply 17
buy 10

The above data could be represented in a CSV-formatted file as follows:

supply,30
buy,10
buy,13
supply,17
buy,10

Your task is to read all data from input csv file, create a report and write it to newFile (the name of this file is the second parameter in the method).

Example of the report:

supply,47
buy,33
result,14

Explanation:

  • supply = 30 + 17 = 47
  • buy = 10 + 13 + 10 = 33
  • result = supply - buy = 47 - 33 = 14

jv-work-with-file's People

Contributors

sofasmile avatar resci avatar boroda4436 avatar romandubovskyi avatar

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.